home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility2 / wnders22.zip / WINDERS.H < prev    next >
C/C++ Source or Header  |  1992-08-18  |  903b  |  40 lines

  1. /* Compiled with Turbo C++ 1.01 */
  2.  
  3. #include <stdio.h>
  4. #include <conio.h>
  5. #include <process.h>
  6. #include <time.h>
  7. #include <bios.h>
  8. #include <stdlib.h>
  9.  
  10. /* keyhit function */
  11. #define RIGHT          0x01
  12. #define LEFT           0x02
  13. #define CTRL           0x04
  14. #define ALT            0x08
  15. /* keyhit function */
  16.  
  17. /* Exit Codes */
  18. #define HLP            1
  19. #define DOS         2
  20. #define VER         3
  21. /* Exit Codes */
  22.  
  23. /* macro functions */
  24. #define NIL(x) strcpy(x,"")
  25. #define DELAY_SECONDS(x) delay(x*1000)
  26. /* macro functions */
  27.  
  28. /* prototypes */
  29. void Dosf(void);
  30. void Winf(char *drive, char *path, char *name, char *args, char intro, char changed);
  31. int main(int argc, char *argv[]);
  32. int wherey(void);
  33. int keyhit(void);
  34. int argerror(char *argv, char option[], int Dlay);
  35. int center(char *string);
  36. /* prototypes */
  37.  
  38. /* copyright */
  39. static char Copyright[]="Copyright (c)1992 Earl W. Hartsell";
  40. /* copyright */